home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_11_08
/
1108121b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-05-21
|
219 b
|
19 lines
1: struct X
2: {
3: static int i;
4: class Y
5: {
6: void f();
7: };
8: };
9:
10: class Z
11: {
12: static int i;
13: friend void X::Y::f()
14: {
15: i = 5;
16: }
17: };